Class DebugToolbar

Summary

Fully Qualified Name: CodeIgniter\Filters\DebugToolbar
Implements: FilterInterface

Description

Debug toolbar filter

Methods

Name Description Defined By
after() If the debug flag is set (CI_DEBUG) then collect performance and debug information and display it in a toolbar. DebugToolbar
before() We don't need to do anything here. DebugToolbar

Method Details

after()

If the debug flag is set (CI_DEBUG) then collect performance and debug information and display it in a toolbar.

Parameter Name Type Description
$request \RequestInterface|\CodeIgniter\HTTP\IncomingRequest
$response \ResponseInterface|\CodeIgniter\HTTP\Response

Returns: void

before()

We don't need to do anything here.

Parameter Name Type Description
$request \RequestInterface|\CodeIgniter\HTTP\IncomingRequest

Returns: void

Top